-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add transmission class and examples #122
Conversation
…od things to SparkPost class
…e.php as a parent class for all future resources.
…to Transmissions->post()
…he fixCarbonCopy() method
…ess, wherever possible
…se with no uri with a payload
@@ -1,3 +1,7 @@ | |||
<?php | |||
|
|||
require_once dirname(__FILE__).'/../vendor/autoload.php'; | |||
|
|||
//pull in API key config | |||
$optionsFile = file_get_contents(dirname(__FILE__).'/example-options.json'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll want to update the script in composer.json
that creates this file as well.
Need to run |
Looks great thus far. Single recip, multiple recip, and cc/bcc all work. |
echo $e->getCode() . "\n"; | ||
echo $e->getMessage() . "\n"; | ||
} | ||
?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing new line character at end of file
👌 - once the build completes, merge away! |
No description provided.